home *** CD-ROM | disk | FTP | other *** search
/ Data Base of the Video Yearbook 1995 / Data Base of the Video Yearbook 1995 - Disc 1.iso / cosmos / pack2.dir / 00050_quit.ls < prev    next >
Encoding:
Text File  |  1995-12-30  |  501 b   |  21 lines

  1. on mouseDown
  2.   set h to the locH of sprite clickOn()
  3.   set v to the locV of sprite clickOn()
  4.   repeat while the stillDown
  5.     if rollOver(clickOn()) then
  6.       set the locH of sprite clickOn() to h + 5
  7.       set the locV of sprite clickOn() to v + 5
  8.       next repeat
  9.     end if
  10.     set the locH of sprite clickOn() to h
  11.     set the locV of sprite clickOn() to v
  12.   end repeat
  13.   set the locH of sprite clickOn() to h
  14.   set the locV of sprite clickOn() to v
  15.   updateStage()
  16. end
  17.  
  18. on mouseUp
  19.   quit()
  20. end
  21.